home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / patches / wfx401.exe / DOSPATCH.BAT next >
DOS Batch File  |  1994-04-22  |  2KB  |  68 lines

  1. @ECHO OFF
  2. IF "%1"=="/?" GOTO FIRST
  3. IF "%1"=="" GOTO FIRST
  4. IF EXIST %1\FAXMNG.EXE GOTO BEGIN
  5. ECHO ******************************************************
  6. ECHO The WinFax PRO 4.0 directory you specified is invalid.
  7. ECHO ******************************************************
  8. GOTO HELP
  9.  
  10. :BEGIN
  11. CLS
  12. IF NOT EXIST ENABLE.RTP GOTO P_ERROR
  13. IF NOT EXIST PATCHER.EXE GOTO P_ERROR
  14. CLS
  15. ECHO The patch process is about to begin, please be sure that you
  16. ECHO have completely exited Windows and are not running this patch
  17. ECHO from within a DOS session.
  18. ECHO.
  19. ECHO If you are unsure, press CTRL-C now to stop the upgrade, otherwise:
  20. ECHO.
  21. PAUSE
  22. ECHO.
  23. ECHO You may see some warning messages appear on your screen while the
  24. ECHO patch is running.  These are normal and may be ignored.
  25. ECHO.
  26. ECHO Patching files, Please wait ...
  27. ECHO.
  28. PATCHER /V /I %1 ENABLE.RTP >NUL
  29. ECHO.
  30. ECHO Patch process ended.
  31. ECHO.
  32. GOTO END
  33.  
  34. :P_ERROR
  35. ECHO.
  36. ECHO ======================
  37. ECHO Patch file(s) missing!
  38. ECHO ======================
  39. ECHO.
  40. ECHO One of the required patch files was not found in your current
  41. ECHO working directory.  In order for the patch to run successfully,
  42. ECHO all patch files must be present and in your current working 
  43. ECHO directory.
  44. ECHO.
  45. ECHO.
  46. ECHO Check the README.1ST file for a complete list of required files.
  47. ECHO.
  48. ECHO One or both of the following files is missing:
  49. ECHO.
  50. ECHO PATCHER.EXE or ENABLE.RTP
  51. ECHO.
  52. GOTO END
  53.  
  54. :FIRST
  55. ECHO.
  56. ECHO WinFax PRO 4.0 upgrade patch (via DOS)
  57. ECHO ======================================
  58.  
  59. :HELP
  60. ECHO.
  61. ECHO Usage: DOSPATCH { WinFax PRO 4.0 directory }
  62. ECHO.
  63. ECHO Example: DOSPATCH C:\WINFAX
  64. ECHO.
  65. GOTO END
  66.  
  67. :END
  68.